build: gdk/wayland/cursor depends on wayland-client
authorDominique Leuenberger <dimstar@opensuse.org>
Thu, 20 Feb 2020 16:07:02 +0000 (17:07 +0100)
committerDominique Leuenberger <dimstar@opensuse.org>
Thu, 20 Feb 2020 16:07:02 +0000 (17:07 +0100)
On distros where wayland-client.h might not be directly in /usr/include
we fail to find the correct headers otherwise.

gdk/wayland/cursor/meson.build

index fb14dbf9b67468d1d7ffe248e6f91493fb271f1a..4b48085d12a0318c76e51a4dd004e6fa9815f7eb 100644 (file)
@@ -7,6 +7,6 @@ wayland_cursor_sources = files([
 libwayland_cursor = static_library('wayland+cursor',
                                    sources: wayland_cursor_sources,
                                    include_directories: [ confinc, ],
-                                   dependencies: [ glib_dep, ],
+                                   dependencies: [ glib_dep, wlclientdep, ],
                                    c_args: common_cflags,
                                    link_args: common_ldflags)